home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / archiver / scrnc102.zip / TESTR.BAT < prev    next >
DOS Batch File  |  1988-03-16  |  793b  |  31 lines

  1. echo off
  2. if %1x == x goto syntax
  3. if not exist %1.txt goto error1
  4. if not exist scrxr.stb goto error2
  5. if not exist prtparm.com goto error3
  6. copy scrxr.stb + %1.txt %1.bin
  7. scrnch /o /e:%1.bin prtparm.com testexit.com
  8. testexit
  9. goto finish
  10. :syntax
  11. echo  
  12. echo Syntax
  13. echo    TESTR exitname
  14. echo  
  15. echo This .BAT file allows you to test a Run Mode exit.   The  exit
  16. echo will  be  created  by  appending  exitname.TXT  to the  end of
  17. echo SCRXR.STB. The result will be named exitname.BIN.   SCRNCH  is
  18. echo used to add the exit to a program, then the program is called.
  19. echo  
  20. goto finish
  21. :error1
  22. echo ERROR: file %1.TXT not found.
  23. goto finish
  24. :error2
  25. echo ERROR: file SCRXR.STB not found.
  26. goto finish
  27. :error3
  28. echo ERROR: file PRTPARM.COM not found
  29. goto finish
  30. :finish
  31.